* first word of each sentence
* @GTK_INPUT_HINT_INHIBIT_OSK: Suggest to not show an onscreen keyboard
* (e.g for a calculator that already has all the keys).
+ * @GTK_INPUT_HINT_VERTICAL_WRITING: The text is vertical. Since 3.18
*
* Describes hints that might be taken into account by input methods
* or applications. Note that input methods may already tailor their
GTK_INPUT_HINT_UPPERCASE_CHARS = 1 << 4,
GTK_INPUT_HINT_UPPERCASE_WORDS = 1 << 5,
GTK_INPUT_HINT_UPPERCASE_SENTENCES = 1 << 6,
- GTK_INPUT_HINT_INHIBIT_OSK = 1 << 7
+ GTK_INPUT_HINT_INHIBIT_OSK = 1 << 7,
+ GTK_INPUT_HINT_VERTICAL_WRITING = 1 << 8
} GtkInputHints;
/**